projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2676e09
)
(remove-hook): Fix spurious quote.
author
Dave Love
<fx@gnu.org>
Tue, 21 Apr 1998 18:38:34 +0000
(18:38 +0000)
committer
Dave Love
<fx@gnu.org>
Tue, 21 Apr 1998 18:38:34 +0000
(18:38 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index c21b862333d71d1dfc4b31cd153ef8b997b2f86b..014217edf896e27037341eb96c2436adcb8f182e 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-632,7
+632,7
@@
This makes no difference if the hook is not buffer-local.
To make a hook variable buffer-local, always use
`make-local-hook', not `make-local-variable'."
(if (or (not (boundp hook)) ;unbound symbol, or
- (not (default-boundp
'
hook))
+ (not (default-boundp hook))
(null (symbol-value hook)) ;value is nil, or
(null function)) ;function is nil, then
nil ;Do nothing.